home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl150l.zip / COMPLIB / 386 / STKCHK.NAS < prev   
Text File  |  1997-01-11  |  193b  |  14 lines

  1. [bits 32]
  2.  
  3. [global __stackerror]
  4. [extern _printf]
  5. [extern _abort]
  6.  
  7. [section .text]
  8. errmsg    db    "stack overflow",10,13,0
  9.  
  10. __stackerror:
  11.     push    dword errmsg
  12.     call    _printf
  13.     jmp    _abort;
  14.